-
Notifications
You must be signed in to change notification settings - Fork 10k
Fix flowtrackd naming in schema map #23007
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix flowtrackd naming in schema map #23007
Conversation
|
This pull request requires reviews from CODEOWNERS as it changes files that match the following patterns:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Other comments (2)
- src/content/docs/analytics/graphql-api/migration-guides/network-analytics-v2/schema-map.mdx (22-22) I believe this change might be introducing an error rather than fixing one. In Cloudflare's naming conventions, 'flowtrackd' is likely the correct term (short for 'flow tracking daemon') rather than 'flowtracked'. Please verify the correct naming with the product team before proceeding with this change.
- src/content/docs/analytics/graphql-api/migration-guides/network-analytics-v2/index.mdx (70-70) While this PR changes the inline example to use single quotes (`direction: 'ingress'`), the full GraphQL query example at the bottom of the file still uses double quotes for all string values. For consistency, either both examples should use single quotes or both should use double quotes.
💡 To request another review, post a new comment with "/windsurf-review".
| In this example, we are going to use the GraphQL Analytics API to query for Firewall Events over a specified time period. | ||
|
|
||
| The following API call will request Firewall Events over a one hour period, and output the requested fields. Be sure to replace `<CLOUDFLARE_ZONE_TAG>`, `<EMAIL>`, and `<API_TOKEN>`[^1] with your zone tag and API credentials, and adjust the `datetime_geg` and `datetime_leq` values to your liking. | ||
| The following API call will request Firewall Events over a one hour period, and output the requested fields. Be sure to replace `<Cloudflare_ZONE_TAG>`, `<EMAIL>`, and `<API_TOKEN>`[^1] with your zone tag and API credentials, and adjust the `datetime_geq` and `datetime_leq` values to your liking. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch fixing the parameter name from datetime_geg to datetime_geq. This correction is important as the incorrect parameter name would cause API queries to fail.
| 6. For **Starting Point**, choose \*Clone Public Git Repository\*\*.\*\*\* | ||
|
|
||
| 7. Enter the *cloudflare\_block* URL for the public Git repository `git://github.com/llooker/cloudflare_block.git`. | ||
| 7. Enter the *cloudflare\_block* URL for the public Git repository `git://github.com/looker/cloudflare_block.git`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch updating the GitHub repository URL from 'llooker' to 'looker'. This ensures users are directed to the official Looker organization repository.
| <th>dosdNetworkAnalytics-AdaptiveGroups</th> | ||
| <th>dosdAttackAnalytics-Groups</th> | ||
| <th>flowtrackdNetworkAnalytics-AdaptiveGroups</th> | ||
| <code>flowtrackedNetworkAnalytics-AdaptiveGroups</code> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change not only modifies the name from 'flowtrackd' to 'flowtracked' (which may be incorrect), but also changes the HTML structure from a table header to a element. This will break the table formatting in the documentation.
This pull request addresses several style guide violations, including incorrect spellings and casing issues, as well as non-standard quote usage. The changes ensure compliance with the style guide and improve the overall quality of the documentation.
schema-map.mdx)